home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / mlregres / mlrdemo.dpr < prev    next >
Encoding:
Text File  |  1998-04-24  |  291 b   |  17 lines

  1. program Mlrdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Mlrdemo1 in 'MLRDEMO1.PAS' {Form1},
  6.   Matrix in 'MATRIX.PAS',
  7.   Maxdata in 'MAXDATA.PAS',
  8.   OGTools in 'OGTools.pas';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Title := 'MLR Test App';
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.